(Mon P'ti [Monty]) Python
Yes Python is cool and you can do some neat stuff with it:
-
Automate processes / do things software can't
Yes Python is cool and you can do some neat stuff with it:
-
Automate processes / do things software can't
-
Functions
def add(a, b):
return a + b
Yes Python is cool and you can do some neat stuff with it:
-
Automate processes / do things software can't
-
Functions
-
Variable overloading / No need to predeclare variables
def add(a, b):
return a + b
add(1, 2) = 3
add("1", "2") = "12"
Yes Python is cool and you can do some neat stuff with it:
-
Automate processes / do things software can't
-
Functions
-
Variable overloading / No need to predeclare variables
def add(a, b):
return a + b
add(1, 2) = 3
add("1", "2") = "12"
No Compiling
Reasonable speed with scientific packages written in C/C++ or Fortran
But ...
-
Standard Python is still written as scripts
-
Have to reexcute everything when changing one thing
-
Can be hard to understand what each part of the code does
-
Standard plotting is to file and non interactive